home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_WP410.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  10.8 KB  |  747 lines

  1. ;     
  2. ;                  Word-Perfect 4.10 Word Processor     
  3. ;     
  4. Comment        ("Configured For Word-Perfect 4.10")     
  5. ;     Parameters     
  6. ;     
  7. Sensitivity     (3, 10)   ;  (Xinc,Yinc)     
  8. Hysteresis      (2, 2)    ;  (AutoX,AutoY)     
  9. ReverseVideo    (Yes)     ;  Displays are in reverse video     
  10. FixedMenu       (Yes)     ;  Fixed menu     
  11. MenuCenter      (0, 10)   ;  (Row,Column) of menu center     
  12. EnableBeep      (Yes)     ;  Beep if wrong button is pressed     
  13. ;     
  14. ;     
  15. ;     Cursor Definition     
  16. ;     
  17. ArrowKeys: Cursor     
  18. (     
  19.       Left      ([Left])     
  20.       Right     ([Right])     
  21.       Up        ([Up])     
  22.       Down      ([Down])     
  23. )     
  24. ;     
  25. ;     
  26. ;     Button Definition     
  27. ;     
  28. LBM: Button     (Menu(Main))        ; Left button  
  29. LBE: Button    (Menu(Edit))        ; Left button    
  30. LBB: Button     (Menu(Block))       ; Left button    
  31. LBF:Button     (Menu(Files))         ; Left button     
  32. LBMi: Button     (Menu(Misc))         ; Left button    
  33. LBMo:Button  (Menu(Motion))     ;Left button     
  34. MB:  Button     (Keys([Enter]))      ; Middle button, Enter key  
  35.  
  36.  
  37.   
  38. RB:  Button     (Keys([Esc]))        ; Right  button, Esc key    
  39.  
  40. ;     
  41. ;     
  42. ;     Menu Definition     
  43. ;     
  44.     
  45. Main: Menu     
  46. (     
  47.       Title  ("Main")     
  48.       Item   ("Edit Menu         ",    Menu(Edit),Button(LBE))  
  49.  
  50.       Item   ("Files Menu        ",    Menu(Files),Button(LBF)) 
  51.  
  52.       Item   ("Thesaurus Menu    ",     Menu(Thesa), 
  53. Keys([a-F1])) 
  54.       Item   ("Spell Menu        ",    Menu(Spell), 
  55. Keys([c-F2]))    
  56.       Item   ("DOS Shell Menu    ",    Menu(Shell), 
  57. Keys([c-F1]))     
  58.       Item   ("Screen  Menu      ",     Menu(screen), 
  59. Keys([c-F3]))    
  60.       Item   ("Miscellaneous Menu",    Menu(Misc),Button(LBMi)) 
  61.  
  62.  
  63.   
  64.    
  65.                 Item   ("Help              ",     Keys([F3]))    
  66.  
  67.                 Item   ("Exit              ",     Keys([F7]))    
  68.  
  69. )     
  70. ;    
  71.   
  72.    
  73.   
  74. Edit: Menu    
  75.   
  76. (   
  77.   
  78.       Title   ("Edit") 
  79.       Item   ("Bold       ",           Keys([F6]))    
  80.   
  81.       Item   ("Underline  ",           Keys([F8]))    
  82.   
  83.       Item   ("Script Menu",           Menu(Script),  
  84.   
  85. Keys([s-F1]))    
  86.   
  87.       Item   ("Block Menu ",           Menu(Block), Button(LBB)) 
  88.  
  89.   
  90.   
  91.   
  92.       Item   ("Motion Menu",         Menu(Motion),Button(LBMo))  
  93.  
  94.   
  95.       Item   ("Delete ... ",          Menu(Delete))   
  96.   
  97.       Item   ("Main Menu  ",             Menu(Main),Button(LBM)) 
  98.  
  99.   
  100.       Item   ("Exit       ",                  Keys([F7]))   
  101.   
  102. )   
  103.   
  104.    
  105.   
  106. Script: Menu    
  107.   
  108. (    
  109.   
  110.       Title  ("Script")    
  111.   
  112.       Item   ("1. Superscript   ",      Keys(1))    
  113.   
  114.       Item   ("2. Subscript     ",      Keys(2))    
  115.   
  116.       Item   ("3. Overstrike    ",      Keys(3))    
  117.   
  118.       Item   ("4. Half Line Up  ",      Keys(4))    
  119.   
  120.       Item   ("5. Half Line Down",      Keys(5))    
  121.   
  122.       Item   ("6. Adv. To Line #",      Keys(6))    
  123.   
  124.       Item   ("0. Cancel        ",      Keys(0))    
  125.   
  126. )   
  127.   
  128.    
  129.   
  130. Block: Menu    
  131.   
  132. (    
  133.   
  134.       Title  ("Block")    
  135.   
  136.       Item   ("Mark Block    ",      Keys([a-F4]))    
  137.   
  138.       Item   ("Cut/Copy Block",      Menu(Bmove), Keys([c-F4]))  
  139.  
  140.   
  141.       Item   ("Move/Retrieve ",      Menu(Amove), Keys([c-F4]))  
  142.  
  143.   
  144.       Item   ("<-Search      ",      Keys([s-F2]))    
  145.   
  146.       Item   ("->Search      ",      Keys([F2]))    
  147.   
  148.       Item   ("Replace       ",      Keys([a-F2]))    
  149.   
  150.       Item   ("Mark Text     ",      Keys([a-F5]))    
  151.   
  152.       Item   ("Tab Align     ",      Keys([c-F6]))    
  153.   
  154.       Item   ("Center        ",      Keys([s-F6]))    
  155.   
  156.       Item   ("Flush Right   ",      Keys([a-F6]))    
  157.   
  158.       Item   ("Edit Menu     ",       Menu(Edit),Button(LBE))   
  159.   
  160.       Item   ("Exit          ",      Keys([F7]))    
  161.   
  162. )    
  163.   
  164.    
  165.   
  166. Motion: Menu   
  167.   
  168. (   
  169.   
  170.       Title("Motion")   
  171.   
  172.       Item("Word Left         ",          Keys([c-Left]))   
  173.   
  174.       Item("Word Right        ",        Keys([c-Right]))   
  175.   
  176.       Item("Page Up           ",            Keys([PgUp]))   
  177.   
  178.       Item("Page Down         ",       Keys([PgDn]))   
  179.   
  180.       Item("Top of Document   ",   Keys([Home][Home][Up]))   
  181.   
  182.       Item("Bottom of Document", Keys([Home][Home][Down]))   
  183.   
  184.       Item("Edit Menu",         Menu(Edit),Button(LBE))   
  185.   
  186. )   
  187.   
  188.    
  189.   
  190. Delete: Menu   
  191.   
  192. (   
  193.   
  194.       Title("Delete")   
  195.   
  196.       Item("Delete Word  ",      Keys([c-Backspace]))   
  197.   
  198.       Item("Delete to EOL",  Keys([c-End]))   
  199.   
  200. )   
  201.   
  202.    
  203.   
  204. Files: Menu    
  205.   
  206. (    
  207.   
  208.       Title  ("Files")   
  209.   
  210.       Item   ("List File   ",           Keys([F5]))    
  211.   
  212.       Item   ("Switch      ",           Keys([s-F3]))    
  213.   
  214.       Item   ("Foot Note   ",        Keys([c-F7]))    
  215.   
  216.       Item   ("->Indent<-  ",        Keys([s-F4]))    
  217.   
  218.       Item   ("->Indent    ",        Keys([F4]))    
  219.   
  220.       Item   ("Print       ",        Menu(Print), Keys([s-F7]))  
  221.  
  222.   
  223.       Item   ("Print Format",        Keys([c-F8]))    
  224.   
  225.       Item   ("Line Format ",        Menu(Line), Keys([s-F8]))   
  226.  
  227.   
  228.       Item   ("Page Format ",        Keys([a-F8]))    
  229.   
  230.       Item   ("Retrieve    ",        Keys([s-F10]))    
  231.   
  232.       Item   ("Save        ",        Keys([F10]))    
  233.   
  234.       Item   ("Text I/O    ",        Menu(Text), Keys([c-F5]))   
  235.  
  236.   
  237.       Item   ("Main Menu   ",    Menu(Main),Button(LBM))   
  238.   
  239.       Item   ("Exit        ",        Keys([F7]))    
  240.   
  241. )   
  242.  
  243.  
  244.  
  245.   
  246.  
  247.  
  248.  
  249.    
  250.  
  251.  
  252.  
  253. Misc: Menu   
  254.  
  255.  
  256.  
  257. (   
  258.  
  259.  
  260.  
  261.       Title  ("Miscellaneous")   
  262.  
  263.  
  264.  
  265.       Item   ("Merge/Sort  ",        Keys([c-F9]))   
  266.  
  267.  
  268.  
  269.       Item   ("Merge End   ",        Keys([s-F9]))   
  270.  
  271.  
  272.  
  273.       Item   ("Merge Codes ",        Keys([a-F9]))   
  274.  
  275.  
  276.  
  277.       Item   ("Merge Return",        Keys([F9]))   
  278.  
  279.  
  280.  
  281.       Item   ("Define Macro",        Keys([c-F10]))   
  282.  
  283.  
  284.  
  285.       Item   ("Invoke Macro",        Keys([a-F10]))   
  286.  
  287.  
  288.  
  289.       Item   ("Reveal Codes",        Keys([a-F3]))   
  290.  
  291.  
  292.  
  293.       Item   ("Math/Column ",        Keys([a-F7]))   
  294.  
  295.  
  296.  
  297.       Item   ("Date        ",        Keys([s-F5]))   
  298.  
  299.  
  300.  
  301.       Item   ("Cancel      ",        Keys([F1]))   
  302.  
  303.  
  304.  
  305.       Item   ("Main Menu   ",        Menu(Main), Button(LBM))   
  306.  
  307.  
  308.  
  309.       Item   ("Exit        ",        Keys([F7]))   
  310.  
  311.  
  312.  
  313. )   
  314.  
  315.  
  316.  
  317.   
  318.  
  319.  
  320.  
  321. Shell: Menu   
  322.  
  323.  
  324.  
  325. (   
  326.  
  327.  
  328.  
  329.       Title  ("DOS Shell")   
  330.  
  331.  
  332.  
  333.       Item   ("1. Exit To DOS",         Keys(1))   
  334.  
  335.  
  336.  
  337.       Item   ("0. Cancel     ",         Keys(0))   
  338.  
  339.  
  340.  
  341. )  
  342.  
  343.  
  344.  
  345.   
  346.  
  347.  
  348.  
  349. Spell: Menu   
  350.  
  351.  
  352.  
  353. (   
  354.  
  355.  
  356.  
  357.       Title  ("Spell Check")   
  358.  
  359.  
  360.  
  361.       Item   ("1. Word             ",   Keys(1))   
  362.  
  363.  
  364.  
  365.       Item   ("2. Page             ",   Keys(2))   
  366.  
  367.  
  368.  
  369.       Item   ("3. Document         ",   Keys(3))   
  370.  
  371.  
  372.  
  373.       Item   ("4. Change Dictionary",   Keys(4))   
  374.  
  375.  
  376.  
  377.       Item   ("5. Look Up          ",   Keys(5))   
  378.  
  379.  
  380.  
  381.       Item   ("6. Count            ",   Keys(6))   
  382.  
  383.  
  384.  
  385.       Item   ("0. Cancel           ",   Keys(0))   
  386.  
  387.  
  388.  
  389. )  
  390.  
  391.  
  392.  
  393.   
  394.  
  395.  
  396.  
  397. Thesa: Menu   
  398.  
  399.  
  400.  
  401. (   
  402.  
  403.  
  404.  
  405.       Title  ("Thesaurus")   
  406.  
  407.  
  408.  
  409.       Item   ("1. Replace Word ",       Keys(1))   
  410.  
  411.  
  412.  
  413.       Item   ("2. View Document",       Keys(2))   
  414.  
  415.  
  416.  
  417.       Item   ("3. Look Up Word ",       Keys(3))   
  418.  
  419.  
  420.  
  421.       Item   ("4. Clear Column ",       Keys(4))   
  422.  
  423.  
  424.  
  425.       Item   ("0. Cancel       ",       Keys(0))   
  426.  
  427.  
  428.  
  429. )  
  430.  
  431.  
  432.  
  433.   
  434.  
  435.  
  436.  
  437. Screen: Menu   
  438.  
  439.  
  440.  
  441. (   
  442.  
  443.  
  444.  
  445.       Title  ("Screen Display")   
  446.  
  447.  
  448.  
  449.       Item   ("1. Window       ",       Keys(1))   
  450.  
  451.  
  452.  
  453.       Item   ("2. Line Draw    ",       Keys(2))   
  454.  
  455.  
  456.  
  457.       Item   ("3. Ctrl/Alt Keys",       Keys(3))   
  458.  
  459.  
  460.  
  461.       Item   ("4. Color        ",       Keys(4))   
  462.  
  463.  
  464.  
  465.       Item   ("5. Auto Rewrite ",       Keys(5))   
  466.  
  467.  
  468.  
  469.       Item   ("0. Rewrite      ",       Keys(0))   
  470.  
  471.  
  472.  
  473.       Item   ("0. Cancel       ",       Keys(0))   
  474.  
  475.  
  476.  
  477. )  
  478.  
  479.  
  480.  
  481.   
  482.  
  483.  
  484.  
  485.   
  486.  
  487.  
  488.  
  489. Bmove: Menu   
  490.  
  491.  
  492.  
  493. (   
  494.  
  495.  
  496.  
  497.       Title  ("Cut/Copy Block")   
  498.  
  499.  
  500.  
  501.       Item   ("1. Cut Block        ",   Keys(1))   
  502.  
  503.  
  504.  
  505.       Item   ("2. Copy Block       ",   Keys(2))   
  506.  
  507.  
  508.  
  509.       Item   ("3. Append Block     ",   Keys(3))   
  510.  
  511.  
  512.  
  513.       Item   ("4. Cut/Copy Column  ",   Keys(4))   
  514.  
  515.  
  516.  
  517.       Item   ("5. Cut/Copy Retangle",   Keys(5))   
  518.  
  519.  
  520.  
  521.       Item   ("0. Cancel           ",   Keys(0))   
  522.  
  523.  
  524.  
  525. )  
  526.  
  527.  
  528.  
  529. Amove: Menu   
  530.  
  531.  
  532.  
  533. (   
  534.  
  535.  
  536.  
  537.       Title  ("Move/Retrieve")   
  538.  
  539.  
  540.  
  541.       Item   ("1. Move Sentence     ",  Keys(1))   
  542.  
  543.  
  544.  
  545.       Item   ("2. Move Paragraph    ",  Keys(2))   
  546.  
  547.  
  548.  
  549.       Item   ("3. Move Page         ",  Keys(3))   
  550.  
  551.  
  552.  
  553.       Item   ("4. Retrieve Column   ",  Keys(4))   
  554.  
  555.  
  556.  
  557.       Item   ("5. Retrieve Text     ",  Keys(5))   
  558.  
  559.  
  560.  
  561.       Item   ("6. Retrieve Rectangle",  Keys(6))   
  562.  
  563.  
  564.  
  565.       Item   ("0. Cancel            ",  Keys(0))   
  566.  
  567.  
  568.  
  569. )  
  570.  
  571.  
  572.  
  573.   
  574.  
  575.  
  576.  
  577. Print: Menu   
  578.  
  579.  
  580.  
  581. (   
  582.  
  583.  
  584.  
  585.       Title  ("Print")   
  586.  
  587.  
  588.  
  589.       Item   ("1. Full Text      ",     Keys(1))   
  590.  
  591.  
  592.  
  593.       Item   ("2. Page           ",     Keys(2))   
  594.  
  595.  
  596.  
  597.       Item   ("3. Change Option  ",     Keys(3))   
  598.  
  599.  
  600.  
  601.       Item   ("4. Printer Control",     Keys(4))   
  602.  
  603.  
  604.  
  605.       Item   ("5. Type Through   ",     Keys(5))   
  606.  
  607.  
  608.  
  609.       Item   ("0. Cancel         ",     Keys(0))   
  610.  
  611.  
  612.  
  613. )  
  614.  
  615.  
  616.  
  617.   
  618.  
  619.  
  620.  
  621. Text: Menu   
  622.  
  623.  
  624.  
  625. (   
  626.  
  627.  
  628.  
  629.       Title  ("Current Document")   
  630.  
  631.  
  632.  
  633.       Item   ("1. Save as ASCII File      ",   Keys(1))   
  634.  
  635.  
  636.  
  637.       Item   ("2. Retrieve an ASCII File  ",   Keys(2))   
  638.  
  639.  
  640.  
  641.       Item   ("3. Lock And Save File      ",   Keys(3))   
  642.  
  643.  
  644.  
  645.       Item   ("4. Unlock And Retrieve File",  Keys(4))   
  646.  
  647.  
  648.  
  649.       Item   ("0. Cancel                  ",  Keys(0))   
  650.  
  651.  
  652.  
  653. )  
  654.  
  655.  
  656.  
  657.   
  658.  
  659.  
  660.  
  661. Line: Menu   
  662.  
  663.  
  664.  
  665. (   
  666.  
  667.  
  668.  
  669.       Title  ("Line Format")   
  670.  
  671.  
  672.  
  673.       Item   ("1. Tabs           ",  Keys(1))   
  674.  
  675.  
  676.  
  677.       Item   ("2. Expanded Tabs  ",  Keys(2))   
  678.  
  679.  
  680.  
  681.       Item   ("3. Margins        ",  Keys(3))   
  682.  
  683.  
  684.  
  685.       Item   ("4. Spacing        ",  Keys(4))   
  686.  
  687.  
  688.  
  689.       Item   ("5. Hyphenation    ",  Keys(5))   
  690.  
  691.  
  692.  
  693.       Item   ("6. Align Character",  Keys(6))   
  694.  
  695.  
  696.  
  697.       Item   ("0. Cancel         ",  Keys(0))   
  698.  
  699.  
  700.  
  701. )  
  702.  
  703.  
  704.  
  705. ;   
  706.  
  707.  
  708.  
  709. ;     Mouse Definition   
  710.  
  711.  
  712.  
  713. ;   
  714.  
  715.  
  716.  
  717.   
  718.  
  719.  
  720.  
  721. Mouse   
  722.  
  723.  
  724.  
  725. (  
  726.  
  727.  
  728.  
  729.       Left   (LBM)        ; Left Button, Main Menu  
  730.  
  731.  
  732.  
  733.       Middle (MB)         ; Middle Button, Enter key  
  734.  
  735.  
  736.  
  737.       Right  (RB)         ; Right Button, Esc key  
  738.  
  739.  
  740.  
  741.       Cursor (ArrowKeys)  ; Cursors  
  742.  
  743.  
  744.  
  745. )  
  746.  
  747.